home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 December
/
MACPOWER-1997-12.ISO.7z
/
MACPOWER-1997-12.ISO
/
AMUG
/
PROGRAMMING
/
Raven 1.2 Examples.sit
/
Raven 1.2 Examples
/
BoxPaint
/
Source
/
Window.h
< prev
next >
Wrap
Text File
|
1997-02-06
|
1KB
|
50 lines
/*
* File: Window.h
* Summary: A window into the document's data.
* Written by: Jesse Jones
*
* Copyright ゥ 1996 Jesse Jones.
* For conditions of distribution and use, see copyright notice in ZTypes.h
*
* Change History (most recent first):
*
* <-> 5/26/96 JDJ Created
*/
#pragma once
#include <ZDocWindow.h>
// ===================================================================================
// class CWindow
// ===================================================================================
class CWindow : public TDocWindow {
typedef TDocWindow Inherited;
//-----------------------------------
// Initialization/Destruction
//
public:
virtual ~CWindow();
CWindow();
//-----------------------------------
// Inherited API
//
protected:
virtual void OnReanimated();
virtual bool OnMenuCommand(const MenuCommand& command);
virtual bool OnCommandStatus(const MenuCommand& command, SCommandStatus& status);
//-----------------------------------
// TReanimator Support
//
public:
static MReanimatable* Create(MReanimatable* parent);
};